home *** CD-ROM | disk | FTP | other *** search
/ cyber.net interactivo 3 / inter@ivo 1996-04.iso / cybint3 / bin / classica.dxr / 00034.ls < prev    next >
Encoding:
Text File  |  1996-03-21  |  1.0 KB  |  49 lines

  1. on mouseUp
  2.   if rollOver(4) then
  3.     sound playFile 2, "..\som\vlnload.wav"
  4.     go("historia")
  5.   else
  6.     if rollOver(5) then
  7.       sound playFile 2, "..\som\vlnload.wav"
  8.       go("CD")
  9.     else
  10.       if rollOver(27) then
  11.         sound stop 1
  12.         sound playFile 1, "..\som\vlnpart4.wav"
  13.         go("PECAS")
  14.       end if
  15.     end if
  16.   end if
  17. end
  18.  
  19. on exitFrame
  20.   if the mouseCast = 90 then
  21.     go("naveg")
  22.   end if
  23.   if rollOver(4) then
  24.     if the visible of sprite 2 = 0 then
  25.       sound playFile 2, "..\som\vlnint.wav"
  26.       set the visible of sprite 2 to 1
  27.     end if
  28.   else
  29.     set the visible of sprite 2 to 0
  30.   end if
  31.   if rollOver(5) then
  32.     if the visible of sprite 3 = 0 then
  33.       sound playFile 2, "..\som\vlnint.wav"
  34.       set the visible of sprite 3 to 1
  35.     end if
  36.   else
  37.     set the visible of sprite 3 to 0
  38.   end if
  39.   if rollOver(27) then
  40.     if the visible of sprite 26 = 0 then
  41.       sound playFile 2, "..\som\vlnint.wav"
  42.       set the visible of sprite 26 to 1
  43.     end if
  44.   else
  45.     set the visible of sprite 26 to 0
  46.   end if
  47.   go(the frame)
  48. end
  49.